home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / BASIC / LIB / EVENTSHELL / DOCS / Shell < prev    next >
Text File  |  1996-04-11  |  2KB  |  100 lines

  1. PROCshell_Init
  2. =>    None
  3.  
  4. --------------------------------------------------------
  5.  
  6. PROCshell_ResourcesInit
  7. =>    None
  8.  
  9. Loads window templates, sprites, menus and message files.
  10. This PROC must be called early in the program, i.e before
  11. the wimp poll loop starts.
  12.  
  13. --------------------------------------------------------
  14.  
  15. FNshell_WimpInit()
  16. =>    int    version number
  17.     str    task name
  18.  
  19. Not used in EvntShell library - use FNshell_WimpInit_I
  20. instead.
  21.  
  22. --------------------------------------------------------
  23.  
  24. FNshell_WimpInit_I()
  25. =>    int    version number
  26.     str    task name
  27.  
  28. Also initialises Interface module.
  29.  
  30. --------------------------------------------------------
  31.  
  32. FNshell_GetAppName
  33. =>    None
  34.  
  35. <=    str    name of application (actually the
  36.          'leaf' name of the application
  37.          directory minus the '!')
  38.  
  39. --------------------------------------------------------
  40.  
  41. FNshell_GetAppDir
  42. =>    None
  43.  
  44. <=    str    full path name of the application
  45.          directory
  46.  
  47. --------------------------------------------------------
  48.  
  49. FNshell_GetAppDataDir
  50. =>    None
  51.  
  52. <=    str    full path name of the application
  53.          data file directory
  54.  
  55. --------------------------------------------------------
  56.  
  57. PROCshell_InitHelpSystem()
  58. =>    str    path name of help files
  59.     bool    DieWithTask flag
  60.  
  61. Used to register a new help system with StrongHlp.
  62. After making this call StrongHlp will add the help
  63. system found in the given path to its icon bar menu.
  64.  
  65. DieWithTask Flag
  66. When TRUE the help system will only be added to 
  67. the StrongHlp icon bar menu while the user 
  68. application is actually running. When FALSE it
  69. is removed when the application quits.
  70.  
  71. --------------------------------------------------------
  72.  
  73. PROCshell_HelpWord()
  74. =>    str    word for which help is to be displayed
  75.  
  76. Used to send a help request to StrongHlp. If the word
  77. is found in the help system the appropriate help text
  78. will be displayed. 
  79.  
  80. --------------------------------------------------------
  81.  
  82. FNshell_LibraryVersion
  83. =>    None
  84.  
  85. <=    int    library version * 100 i.e version 1.02
  86.          returns 102
  87.  
  88. --------------------------------------------------------
  89.  
  90. FNshell_InstallLib()
  91. =>    str    pathname of library file
  92.  
  93. <=    int    junk
  94.  
  95. Installs the specified library file and calls
  96. an initialisation function which must be called
  97. FN_shell_<Lib file leaf name>_Init. This call is
  98. no longer supported.
  99.  
  100. --------------------------------------------------------